home *** CD-ROM | disk | FTP | other *** search
/ Aminet 4 / Aminet 4 - November 1994.iso / aminet / dev / gcc / libnix.lha / gnu / lib / libnix / sources.lha / nix / stdio / sprintf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-04-01  |  208 b   |  12 lines

  1. #include <stdio.h>
  2. #include <stdarg.h>
  3.  
  4. int sprintf(char *s,const char *format,...)
  5. { int retval;
  6.   va_list args;
  7.   va_start(args,format);
  8.   retval=vsprintf(s,format,args);
  9.   va_end(args);
  10.   return retval;
  11. }
  12.